home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / SHOWCUR.CC < prev    next >
Text File  |  1993-04-04  |  344b  |  15 lines

  1. #include <dos.h>
  2. show_cur(int size)
  3. /* This will make the cursor visiable.
  4.    size=1 = cursor uses scan lines 6-7.
  5.    size=9 = cursoe uses scan lines 0-7.
  6. */
  7. {
  8.         union REGS inregs;
  9.         inregs.h.ah=1;
  10.         inregs.h.cl=7;
  11.         if(size==9) inregs.h.ch=0;
  12.         else inregs.h.ch=6;
  13.         int86(0x10,&inregs,&inregs);
  14. }
  15.